home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 26
/
Cream of the Crop 26.iso
/
os2
/
plnk081.zip
/
pilot-link.0.8.1
/
Java
/
Pdapilot
/
Resource.java
< prev
next >
Wrap
Text File
|
1997-08-05
|
510b
|
29 lines
package Pdapilot;
import java.io.*;
/** A representation of a database resource.
*/
public class Resource extends Block {
public int id, index;
public Char4 type;
Resource() {
super();
}
Resource(byte[] contents, Char4 type, int id, int index) {
this.id = id;
this.index = index;
this.type = type;
this.unpack(contents);
}
public String toString() {
return "<generic resource, type "+type+", id "+id+", index "+index+
", raw '"+Util.prettyPrint(raw)+"'>";
}
}